From 93203ca2f6508064e3d866f73c669509f17de688 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 12 Apr 2011 12:49:16 -0400 Subject: [PATCH] GtkToolItemPrivate: Improve struct packing --- gtk/gtktoolitem.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/gtk/gtktoolitem.c b/gtk/gtktoolitem.c index b296e3b9a9..408494d395 100644 --- a/gtk/gtktoolitem.c +++ b/gtk/gtktoolitem.c @@ -99,22 +99,21 @@ struct _GtkToolItemPrivate gchar *tip_text; gchar *tip_private; - guint visible_horizontal : 1; - guint visible_vertical : 1; - guint homogeneous : 1; - guint expand : 1; - guint use_drag_window : 1; - guint is_important : 1; + guint visible_horizontal : 1; + guint visible_vertical : 1; + guint homogeneous : 1; + guint expand : 1; + guint use_drag_window : 1; + guint is_important : 1; + guint use_action_appearance : 1; GdkWindow *drag_window; - gchar *menu_item_id; GtkWidget *menu_item; GtkAction *action; - gboolean use_action_appearance; }; - + static void gtk_tool_item_finalize (GObject *object); static void gtk_tool_item_dispose (GObject *object); static void gtk_tool_item_parent_set (GtkWidget *toolitem, -- 2.30.2